add Pumpkin voxel modules, jitson JIT engine, holo optics, and SIMD enhancements`#29
Merged
Merged
Conversation
Pumpkin Shopping List (9 new items): - property_mask.rs: compiled bitset property queries, batch test_section - nibble.rs: 4-bit nibble pack/unpack/sub_clamp/threshold - aabb.rs: AABB batch intersection, expand, squared distance - distance.rs: batch f32/f64 squared distance, radius filter, knn - byte_scan.rs: NBT byte/u16 pattern scanner - spatial_hash.rs: 3D spatial hash grid with radius/knn queries - jitson/noise.rs: NoiseParams for JIT octave baking - bitwise.rs: popcount_batch_u64, popcount_per_word, masked_popcount - palette_codec.rs: unpack_indices_simd with AVX2 4-bit fast path Integration wiring: - clam.rs: rho_nn_candidates + clam_cascade_search bridge - crystal_encoder.rs: search_similar, pipeline_encode_search - arrow_bridge.rs: ThreePlaneFingerprintBuffer, SoakingBuffer, BindNodeV2 https://claude.ai/code/session_01CdqyUTUfjKZuk8YGJzv6LB
- Don't break knn search immediately when k candidates found — check if next ring could contain closer points first - Compare distances instead of IDs in test (tie-breaking is implementation-defined) https://claude.ai/code/session_01CdqyUTUfjKZuk8YGJzv6LB
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
aabb(batch AABB intersection w/ SSE4.1),nibble(4-bit light-level pack/unpack w/ AVX2),property_mask(compiled bitmask queries w/ AVX2),spatial_hash(grid-based spatial index w/ KNN),clam(chunk-column claim tracking),crystal_encoder(run-length block encoding),arrow_bridge(Arrow IPC serde),byte_scan(varint + length-prefixed protocol parsing),kernels(batch dot/saxpy/reduce)parser,validator,template,scan_config,precompile,packed,noisemodules + runtime detect/IR/engine layers. Refactored fromRwLocktoLazyLock::get_mut(populate-then-freeze pattern)palette_codec(variable-width bit-packed palette indices),zeck(Zeckendorf/Fibonacci encoding + batch/top_k),hamming_top_k_raw, distance kernels, bitwise opssimd_avx2for downstream crate access, 74 clippy fixes,chunks_exactSIMD loop optimization, data-flow invariants rule